SHIVA.WebHome (book view)
Search: \.*

Topics in SHIVA web: Changed: Changed by:

AddCommand   13 Sep 2005 - 21:06 - NEW   Main.HengYuan

Steps to add menu/toolbar actions

  1. Extend either shiva.ActionCommand or shiva.ToggleCommand.
  2. Call
    shiva.Main.addCommand ("comandName", command)
    to add the command to SHIVA command pool. The current naming convention for the command name is plugin/action. For instance: "Painter/saveVolume".
  3. If the command is a ToggleCommand, modify shiva/resources/command.xml to indicate command group s.t. only one ToggleCommand is selected at any given time.
  4. To add the command to the menu, modify shiva/resources/menu.xml
  5. To add the command to the toolbar, modify shiva/resources/toolbar.xml

Icons used in toolbar.xml in general are located in shiva/resourcies/icon/.

CIVMFormat   21 Jun 2006 - 06:36 - NEW   Main.HengYuan

CIVM Format

A CIVM image is consisted of a header file and bunch of files each representing a slice. AKAIK the header file resembles brucker image file format.

Header format:

The general format is like a property file where

[attribute] = [value]
is the general format.

There are plenty of redundancies in the header. Sometimes one or more attributes can be missing. So it is good to check all the redundant attributes in case one of them is missing.

For the image data type, it should be short, signed or not. But SHIVA does not care.

Old Civm file naming convention:

Header file: [abc].headfile Data files: [abc]roimx.001, [abc]roimx.002, etc

Newer file naming convention uses the same header and header type, just the data file names are changed to consider the possibility of over 1000 slices.

Header file: [abc].header Data files: [abc]roimx.0001.raw, [abc]roimx.0002.raw, etc

Possible property list:

X_DIM_STR_LIST = { "S_xres_img", "imatrix_X", "RH_image_size", "dim_X", "PARTAG_CUBESIZEX", "xray_FOV_width", "RH_xres", "S_xres", "rhuser6" };

Y_DIM_STR_LIST = { "S_yres_img", "imatrix_Y", "RH_image_size", "dim_Y", "PARTAG_CUBESIZEY", "xray_FOV_height", "RH_yres", "S_yres", "rhuser7" };

Z_DIM_STR_LIST = { "S_zres_img", "slquant", "PARTAG_CUBESIZEZ", "xray_no_images", "RH_zres", "S_zres", "rhuser8" };

X_FOV_STR_LIST = { "RH_xfov", "dfov" };

Y_FOV_STR_LIST = { "RH_yfov", "dfov_rect" };

Z_FOV_STR_LIST = { "RH_zfov", "slthick" };

DOC   05 Apr 2007 - 18:20 - r1.6   Main.HengYuan

Shiva Developer Documentation

Subversion Repository Structure
svn+ssh://cvs.loni.ucla.edu/cvs/map
Plugin Documentation
For developers who wish to write plugins for SHIVA.
SHIVA Configuration
For developers who want to repackage SHIVA with different start up look and feels.
Core Architecture?
This is for internal documentation.
File Formats
A list of file formats that can be read by SHIVA.
Server protocols
A list of server protocols.
FileFormats   12 Apr 2007 - 20:05 - r1.8   Main.HengYuan

File Formats

The following file formats are currently supported by SHIVA.

GUI_RC   06 Jan 2006 - 23:25 - NEW   Main.HengYuan
GUI_RC is an XML file which describes what the SHIVA frame should look like. It is written in CookSwing. shiva.ShivaGUI class extends JFrame to have an setter for skinlf for loading SkinLF related themepack.

The default SHIVA GUI frame looks like:

<frame varref="this" title="SHIVA" size="640,480" iconimage="shiva/resources/icons/shiva_icon.gif" defaultcloseoperation="DO_NOTHING_ON_CLOSE" windowlistener="windowCloseListener">
   <uimanager systemlookandfeel="true"/>
</frame>

MBAT changes it a bit to load its own theme pack.

<frame varref="this" title="MBAT" size="640,480" iconimage="trogdor/resources/icons/mouseBirnFavicon.gif" defaultcloseoperation="DO_NOTHING_ON_CLOSE" windowlistener="windowCloseListener" skinlf="/trogdor/resources/themepack.zip">
</frame>
HowToUseWiki   26 Aug 2005 - 20:03 - NEW   Main.LindaCapetilloCunliffe

How To Use the SHIVA Wiki

We encourage you to change the contents of a SHIVA Wiki web page and to add your own web page topics - that is what a Wiki is all about !

Edit a Wiki Page

  • Locate the rectangular tab containing the words "Edit this Page"
  • Click the button.
  • Enter a SHIVA Wiki user name and password if prompted to do so.
  • Edit the page using the Wiki Text Formatting Rules
  • Preview your changes to the wiki web page by clicking the rectangular button labelled "Preview Changes"
  • Once you are satisfied with the web page, save the changes by clicking the "Save Changes" button.

Add a Wiki page

A Wiki web page is considered to describe a specific topic. To add a new topic:

  • Edit an existing Wiki page and add a WikiWord defining the name of your new Wiki topic.
  • Preview and Save your changes to the existing web page. Your new Wiki Topic will have a small question mark inserted after the word. This means the new topic has not yet been created.
  • Click the new topic.
  • Enter a SHIVA Wiki user name and password if prompted to do so.
  • You will be viewing a Wiki Edit web page. Enter the contents of your new topic.
  • Preview the changes and revise until you are satisfied (see above for details). * Save the changes to your newly created Wiki Web page.

Adding Images to a Wiki page

*See "Attaching a file to a Wiki page", below.

Attaching a file to a Wiki page.

You may at time want to associate an external file with a SHIVA Wiki topic. Examples of this might be to add the detailed agenda of a meeting, or a spreadsheet table containing experimental results,and so forth.

To do so,

  • Ensure the file is on your local computer.
  • Click the button labelled "Attach a file". You will be asked to locate the file you want to upload, and to supply a comment that describes the file.
  • Click the "Upload File" button at the bottom of the upload page.

Your file will be sent to the SHIVA Wiki web site and a table of file attachments to this web page will appear at the bottom of the web page if it not already there.

  • If you select the "Link" checkbox before uploading the file and it is an image format recognized by our Wiki software (Twiki) the picture will appear in the web page. You may then Edit the page (see above) if you want to modify the text before the picture, or it's location on the web page.

Deleting an attached file

  • Locate the attached file in table of files (usually at the bottom of the wiki web page).
  • Click "Manage"
  • Click "Move Attachment" (at the bottom of the management web page).
  • Choose "Trash" from the drop-down Web menu of projects.
  • Type "TrashAttachment" into the Topic text entry area.
  • Click the "Move" button to delete the attachment.

You can find more details using file attachments

LabelIndexFileFormat   06 Jul 2006 - 23:19 - NEW   Main.HengYuan

Label Index File Format

Label index files (*.lbl, *.txt) are ascii files used by Duff and SHIVA. Each line contains information of the label id, color (optional), tag name, and the long description. The fields are separated by a tab character.

Without Color:

id   tag   description

With Color:

id   0xrrggbb   tag   description

The color field sometimes may not be in a full six digit hex number, but the writer should attempt to produce all six digits.

Plugin   06 Jan 2006 - 22:55 - r1.3   Main.HengYuan

Steps to create a plugin

  1. Implement shiva.interfaces.ShivaPlugin.
  2. Have
    public final static String PLUGIN_DESCRIPTION = "Some Description";
    in the class.
  3. Define entry functions
    public final static start (String config)
    or
    public final static start ()
    in the class.
  4. Specify the plugin class to be loaded in shiva/resources/start.xml. For example,
       <load plugin="shiva.plugins.ColorMapLoader" config="shiva/resources/colormap.xml"/>
    or
       <load plugin="shiva.plugins.About"/>
    The two styles correspond to two different entry functions defined above. The order of loading the plugins may be important since some plugins depend on other plugins to work.

For example:

package foo;

import shiva.interfaces.ShivaPlugin;

public class DemoPlugin implements ShivaPlugin
{
    public final static String PLUGIN_DESCRIPTION = "A Plugin Demo";

    public static void start ()
    {
        System.out.println ("==== Hello World! ====");
    }
}

Then in shiva/resources/start.xml, add the following line

    <load plugin="foo.DemoPlugin"/>

At this point, the plugin can be loaded by SHIVA.

For specific types of plugins, check the following links:

  1. AddCommand Add actions to menu and toolbars.
  2. ReaderWriter Add new file filters.
ReaderWriter   13 Sep 2005 - 22:28 - r1.2   Main.HengYuan

Steps adding a new file reader/writer

  1. Implement shiva.io.ReaderWriter.
  2. Create a shiva.io.DocFilter. The easiest way is using the following template.
    /** file filter description */
    private final static String m_descript = "Analyze(tm) 7.5";
    /** file extensions for file filter */
    private final static String[] m_exts =
        { ".hdr", ".img", ".img.gz", ".img.z" };
    /** we only need one instance running */
    private final static AnalyzeReader m_reader = new AnalyzeReader ();
    /** the file filter */
    private final static DocFilter m_filter =
        new DocFilter (m_reader, VolumeBuffer.class, m_descript, m_exts);
    
    To create a fancier DocFilter, check source code for shiva.plugins.volumefilefilter.VolumeFileFilter.
  3. Register the reader/writer to shiva.Main.docManager:
    DocManager manager = Main.docManager;
    manager.addReadFilter (m_filter);
    manager.addWriteFilter (m_filter);
    
    Note that not all ReaderWriters have to implement both reader and writer.

Creating a ReaderWriter for VolumeBuffer.class

Besides the requirement above, file reader is welcome to provide a mechanism pre-viewing the properties of an image volume input file. To do so, the reader class needs to implement shiva.io.VolumeInfoReader. For specific mechanism of how shiva.io.VolumeInfoReader works, see shiva.plugins.volumepreview.VolumePreview.

In general, VolumeBuffer.class readers should internally have a class that implements shiva.interfaces.VolumeReader. This is not required, but a recommandation. It simplifies the actual reader/writer class implementation.

Show Progress

In general, most image volumes are fairly big and take a while to load. It is desirable to show the progress bar while loading. Shiva provides two ways displaying progress.

  1. The input stream based progress is useful for reading large files through stream. The following example shows how typically it is used. When the inputstream is closed, the progress bar also hides.
    InputStream is = new FileInputStream (imgName);
    InputStreamProgress progress = new InputStreamProgress (is);
    progress.getProgress ().setTitle (file.getPath ());
    is = progress;
    try
    {
        // some code
    }
    finally
    {
        is.close ();
    }
    
  2. For more control, one can use the following way:
    Progress prog = shiva.Main.progressReport.newProgress(0, 0);
    prog.setTitle(file.getPath());
    try
    {
        // some code
    }
    finally
    {
        prog.close ();
    }
    
    and manually update the progress min/max and hide it.

When multiple threads requests progress, their progress bars will be stacked.

START_RC   06 Jan 2006 - 23:24 - NEW   Main.HengYuan
STARTUP_RC points to an XML list of plugins to be loaded. It should be noted that how SHIVA looks is mainly specified using plugins. It is written in CookXml.

shiva.PluginManager is responsible loading this file. It provides a tag library for CookXml. The tag library can be dynamically changed at run time by plugins, so additional tags may be supported.

By default, PluginManager supports the following tags:

  1. <plugins> is the XML document root.
  2. <load plugin="pluginClassName"> for loading a plugin class that does not the additional configuration parameter. For example:
    <load plugin="trogdor.about.About"/>
    
  3. <load plugin="pluginClassName" config="parameter"> for loading a plugin class that requires the additional configuration parameter. Usually this parameter specifies an configuration resource file location. For example:
    <load plugin="shiva.plugins.ColorMapLoader" config="shiva/resources/colormap.xml"/>
    

Tags Introduced by Plugins

<java3d>

shiva.plugins.Java3DLoader introduces this tag such that plugins enclosed are loaded only if Java3D is installed on the client machine.
   <java3d>
      <load plugin="shiva.plugins.surface.SurfacePlugin" />
      <load plugin="shiva.plugins.duffsurface.DFSReader"/>
      <load plugin="shiva.plugins.curveeditor.CurveReader"/>
      <load plugin="shiva.plugins.atlas3d.Atlas3DReader"/>
   </java3d>

<release>

shiva.plugins.VersionLoader introduces this tag so that plugins enclosed are loaded only if the release name of the jar package matches the title specified. title attribute must be specified. default attribute is used to specify the release configuration to use if the jar package release is not specified.

For example:

   <release title="shiva">
      <workspace name="viewWorkSpace" src="shiva/resources/view_workspace.xml" default="true"/>
   </release>
   <release title="shiva_test" default="true">
      <workspace name="viewWorkSpace" src="shiva/resources/view_workspace_test.xml" default="true"/>
      <workspace name="curveRegWorkSpace" src="shiva/resources/curvereg_workspace.xml"/>
      <workspace name="pointRegWorkSpace" src="shiva/resources/pointreg_workspace.xml"/>
   </release>

<workspace>

shiva.workspace.WorkSpaceLoader introduces this tag to the PluginManager for workspace configuration. In general, it is geared toward classes that inherit shiva.workspace.XmlWorkSpace, but other workspaces can also be configured as the default workspace. src attribute specifies the resource file used for the workspaces that inherits XmlWorkSpace to configure its menu and toolbar, etc. default attribute is used to set the default workspace.

For example:

   <workspace name="viewWorkSpace" src="shiva/resources/view_workspace_test.xml" default="true"/>
   <workspace name="curveRegWorkSpace" src="shiva/resources/curvereg_workspace.xml"/>
   <workspace name="pointRegWorkSpace" src="shiva/resources/pointreg_workspace.xml"/>
ServerProtocols   11 Nov 2006 - 05:09 - r1.2   Main.HengYuan

Server Protocols

ShivaConfiguration   06 Jan 2006 - 23:05 - NEW   Main.HengYuan
SHIVA can be configured to have completely different look and feels.

  1. Configure startup resource file location.
  2. Configure ToggleComamnds
  3. Configure menu
  4. Configure toolbar
StartConfigure   06 Jan 2006 - 23:15 - NEW   Main.HengYuan
In shiva.Main class, there are two global class variables START_RC and GUI_RC which can be changed to point to different resource file locations before shiva.Main's main funciton is called. Thus, to have a completely different set of configurations w/o touching the SHIVA core, you can do the something like below:

/*
 *
 * $Id: StartConfigure.txt,v 1.1 2006/01/06 23:15:41 HengYuan Exp www $
 *
 */
package trogdor;

/**
 * @author Heng Yuan
 * @version $Revision: 1.1 $
 */
public class Main
{
   public static String STARTUP_RC = "trogdor/resources/start.xml";
   public static String GUI_RC = "trogdor/resources/shivagui.xml";

   public static void main (String[] args) throws Exception
   {
      shiva.Main.STARTUP_RC = STARTUP_RC;
      shiva.Main.GUI_RC = GUI_RC;
      shiva.Main.main (args);
   }
}
SubversionRepositoryStructure   11 Apr 2007 - 23:06 - r1.2   Main.HengYuan

Subversion Repository Structure

The Subversion repository location is svn+ssh://cvs.loni.ucla.edu/cvs/map . The following is the directory structure under trunk/ , which contains all the source codes, libraries, and build scripts.

Directory Description
/atlas/ This directory contains some sample image volumes and BrainGraph files.
/doc/ Some text documentations.
/lib/ Shared binary libraries.
/resources/ Resources for each build.
/resources/braingrapheditor/ resources for BrainGraph Editor build.
/resources/kali/ resources for BrainGraph Editor build.
/resources/mbat/ resources for MBAT build.
/resources/shiva/ resources for SHIVA build.
/src/ Source code directory, which include not only Java source codes, but also various other resources, including build scripts. Its direct child directories are sources for different builds, core_src/ or plugin_src/.
/src/braingrapheditor_src/ This directory contains the sources for the BrainGraph Editor workspace and its standalone build sources.
/src/core_src/ This directory contains the core frame work. It is used by all other builds.
/src/kali_src/ This directory contains the sources only needed by Kali build. Kali is aimed to be a compact of SHIVA with only limited features.
/src/mbat_src/ This directory contains the sources only needed by MBAT build.
/src/plugins_src/ This directory contains various plugins that are not needed by all the builds.
/src/plugins_src/braingraph_src This directory contains sources for BrainGraph internal structure, file IO filters, and GUI viewing components.
/src/plugins_src/ccdb_src/ This directory contains clients for connecting to CCCDB services.
/src/plugins_src/imagereg_src/ This directory contains archaic image registration (point and curve) workspaces.
/src/plugins_src/ntclient_src/ This directory contains Heng's client implementation to NeuroTerrain server.
/src/plugins_src/registration_src/ This directory contains Erh-Fang Lee's image registration workspaces.
/src/shiva_src/ This directory contains the sources needed to build SHIVA builds. Currently it also contains plugins needed by MBAT and Kali builds. Eventually many of these plugins would be moved to /src/plugin_src/.
TMFormat   07 Jul 2006 - 19:27 - r1.2   Main.CraigSchwartz

LONI Triangle Model Format

This following description is obtained from LONI ShapeTools edu.ucla.loni.ccb.shapeio.tm.parser.TmAsciiShapeParser.

The conventional suffix for a LONI Triangle Model files is `.tm'.

Syntax:

nVertices  nFaces
{vertex coordinates, one per line, as X Y Z tuples} {triangle face indices, three per line}

Note: The index of the third point of a triangle face may have a "-" prefixed. This sign may indicate orientation. It is ignored when the file is read.

Note: vertex indices start at 1, not 0. These are adjusted by subtracting 1 before the face definitions are stored.

Example:

8 12
0.000000 0.000000 0.000000
0.000000 0.000000 1.000000
0.000000 1.000000 0.000000
0.000000 1.000000 1.000000
1.000000 0.000000 0.000000
1.000000 0.000000 1.000000
1.000000 1.000000 0.000000
1.000000 1.000000 1.000000
1 2 -4
4 3 -1
1 5 -6
6 2 -1
2 6 -8
8 4 -2
3 4 -8
8 7 -3
1 3 -7
7 5 -1
5 7 -8
8 6 -5
UCFFormat   07 Jul 2006 - 22:53 - r1.2   Main.HengYuan

UCF Format

Universal Contour Files (UCF) is a format devised at LONI. It is an ascii based file in the following format:

Header

<width=>
384
<height=>
256
<xrange=>
-200.000000 200.000000
<yrange=>
-200.000000 200.000000
<zrange=>
-200.000000 200.000000
<levels>
255

  • <width=> Number of horizontal pixels in the image on which the Ucf was drawn. Occasionally there may be two integer values specified. deprecated
  • <height=> Number of vertical pixels in the image on which the Ucf was drawn. Occasionally there may be two integer values specified. deprecated
  • <xrange=> the relaxed range of contour points, normally in microns.
  • <yrange=> the relaxed range of contour points, normally in microns.
  • <zrange=> the relaxed range of contour points, normally in microns.
  • <levels> indicates the number of contour planes present in the file. Each contour plane may contain several contours.

Immediately following the header are contours planes

Contour

<level number=>
0.000000
<point_num=>
256
<contour_data=>
-28.192158 0.121569 -43.811764 6.325370
   ...
   ...
   ...
<end of level>

  • <level number=> a value that is used to sort this contour plane, often representing the z-coordinate of the plane, but it is not required.
  • <point_num=> starts a new contour within the plane with the number of expected points.
  • <contour_data=> contains the 3D or 4D data values. The 4-th dimension data is ignored by SHIVA.

End

Finally, a UCF file is ended with

<end>

There should be no empty lines as it may break some parsers, including SHIVA.

WebChanges   16 Aug 2001 - 19:58 - NEW   Main.PeterThoeny
Topics in SHIVA web: Changed: (now 09:03) Changed by:

WebStatistics 16 Nov 2009 - 12:33 - r1.1230 Main.guest
Statistics for SHIVA Web Month: Topic views: Topic saves: File uploads: Most popular topic views: Top contributors for topic save and uploads: Nov 2009 2139 0 0 399 ...
 
FileFormats 12 Apr 2007 - 20:05 - r1.8 Main.HengYuan
File Formats The following file formats are currently supported by SHIVA. Image volume files Analyze(tm) ( .img, .hdr): http://www.mayo.edu/bir/PDF/ANALYZE75.pdf ...
 
SubversionRepositoryStructure 11 Apr 2007 - 23:06 - r1.2 Main.HengYuan
Subversion Repository Structure The Subversion repository location is svn+ssh://cvs.loni.ucla.edu/cvs/map . The following is the directory structure under trunk/ ...
 
DOC 05 Apr 2007 - 18:20 - r1.6 Main.HengYuan
Shiva Developer Documentation $ Repository Structure : svn+ssh://cvs.loni.ucla.edu/cvs/map $ Plugin Documentation : For developers who wish to write plugins for SHIVA ...
 
WebHome 13 Mar 2007 - 18:16 - r1.20 Main.HengYuan
SHIVA $ Manual : http://www.loni.ucla.edu/download/SHIVA/SHIVA MAP.pdf $ Download : Release version $ Developer Documentation : SHIVA documentation for developers ...
 
ServerProtocols 11 Nov 2006 - 05:09 - r1.2 Main.HengYuan
Server Protocols ArcIMS ArcXML Programmer's Reference Guide for ArcIMS 9.1 Neuroterrain Atlas Server Network Protocols Web Services Description Language (Axis Client ...
 
UCFFormat 07 Jul 2006 - 22:53 - r1.2 Main.HengYuan
UCF Format Universal Contour Files (UCF) is a format devised at LONI. It is an ascii based file in the following format: Header 384 256 200.000000 200.000000
 
TMFormat 07 Jul 2006 - 19:27 - r1.2 Main.CraigSchwartz
LONI Triangle Model Format This following description is obtained from LONI ShapeTools edu.ucla.loni.ccb.shapeio.tm.parser.TmAsciiShapeParser. The conventional suffix ...
 
LabelIndexFileFormat 06 Jul 2006 - 23:19 - NEW Main.HengYuan
Label Index File Format Label index files ( .lbl, .txt) are ascii files used by Duff and SHIVA. Each line contains information of the label id, color (optional), ...
 
WebPreferences 21 Jun 2006 - 06:43 - r1.22 Main.HengYuan
SHIVA Web Preferences The following settings are web preferences of the SHIVA web. These preferences overwrite the site-level preferences in TWIKIWEB . WIKIPREFSTOPIC ...
 
CIVMFormat 21 Jun 2006 - 06:36 - NEW Main.HengYuan
CIVM Format A CIVM image is consisted of a header file and bunch of files each representing a slice. AKAIK the header file resembles brucker image file format. Header ...
 
GUI_RC 06 Jan 2006 - 23:25 - NEW Main.HengYuan
GUI RC is an XML file which describes what the SHIVA frame should look like. It is written in CookSwing. shiva.ShivaGUI class extends JFrame to have an setter for ...
 
START_RC 06 Jan 2006 - 23:24 - NEW Main.HengYuan
STARTUP RC points to an XML list of plugins to be loaded. It should be noted that how SHIVA looks is mainly specified using plugins. It is written in CookXml. shiva ...
 
StartConfigure 06 Jan 2006 - 23:15 - NEW Main.HengYuan
In shiva.Main class, there are two global class variables START RC and GUI RC which can be changed to point to different resource file locations before shiva.Main ...
 
ShivaConfiguration 06 Jan 2006 - 23:05 - NEW Main.HengYuan
SHIVA can be configured to have completely different look and feels. 1. Configure startup resource file location. 1. Configure ToggleComamnds 1. Configure menu 1 ...
 
Plugin 06 Jan 2006 - 22:55 - r1.3 Main.HengYuan
Steps to create a plugin 1. Implement shiva.interfaces.ShivaPlugin . 1. Have public final static String PLUGIN DESCRIPTION "Some Description"; in the class. 1. Define ...
 
ReaderWriter 13 Sep 2005 - 22:28 - r1.2 Main.HengYuan
Steps adding a new file reader/writer 1. Implement shiva.io.ReaderWriter . 1. Create a shiva.io.DocFilter . The easiest way is using the following template. / file ...
 
AddCommand 13 Sep 2005 - 21:06 - NEW Main.HengYuan
Steps to add menu/toolbar actions 1. Extend either shiva.ActionCommand or shiva.ToggleCommand . 1. Call shiva.Main.addCommand ("comandName", command) to add the command ...
 
HowToUseWiki 26 Aug 2005 - 20:03 - NEW Main.LindaCapetilloCunliffe
How To Use the SHIVA Wiki We encourage you to change the contents of a SHIVA Wiki web page and to add your own web page topics that is what a Wiki is all about ...
 
WebNotify 26 Jul 2005 - 19:56 - r1.6 Main.CraigSchwartz
This is a subscription service to be automatically notified by e-mail when topics change in this SHIVA web. This is a convenient service, so you do not have to come ...
 
WebTopicEditTemplate 07 Feb 2005 - 23:44 - NEW Main.CraigSchwartz
WIKINAME DATE
 
WebLeftBar 16 Aug 2004 - 05:52 - NEW Main.ArthurClemens
INCLUDINGWEB Web INCLUDINGWEB Web Home Changes Index Search Webs WEBLIST{" $name" separator ""} INCLUDE{" MAINWEB . WIKINAME LeftBar" warn "Create personal sidebar ...
 
WebRss 16 Aug 2004 - 03:27 - r1.2 Main.PeterThoeny
TWiki's SHIVA web SCRIPTURL /view SCRIPTSUFFIX /SHIVA The SHIVA web of TWiki. TWiki is a Web-Based Collaboration Platform for the Corporate World. INCLUDE{" TWIKIWEB ...
 
WebSearchAdvanced 18 Jan 2004 - 10:52 - NEW Main.PeterThoeny
INCLUDE{" TWIKIWEB .WebSearchAdvanced"}
 
WebIndex 24 Nov 2001 - 11:41 - r1.2 Main.PeterThoeny
SEARCH{"\. " scope "topic" regex "on" nosearch "on"} See also the faster WebTopicList
 
WebTopicList 24 Nov 2001 - 11:40 - NEW Main.PeterThoeny
TOPICLIST{" $name "} See also the verbose WebIndex.
 
WebChanges 16 Aug 2001 - 19:58 - NEW Main.PeterThoeny
INCLUDE{" TWIKIWEB .WebChanges"}
 
WebSearch 08 Aug 2001 - 05:26 - NEW Main.PeterThoeny
INCLUDE{" TWIKIWEB .WebSearch"}
 

Number of topics: 28

WebHome   13 Mar 2007 - 18:16 - r1.20   Main.HengYuan

SHIVA

Manual
http://www.loni.ucla.edu/download/SHIVA/SHIVA_MAP.pdf
Download
Release version
Developer Documentation
SHIVA documentation for developers.
Frequently Asked Questions?
A list of commonly asked questions and their answers.
WebIndex   24 Nov 2001 - 11:41 - r1.2   Main.PeterThoeny
Topics in SHIVA web: Changed: (now 09:03) Changed by:

AddCommand 13 Sep 2005 - 21:06 - NEW Main.HengYuan
Steps to add menu/toolbar actions 1. Extend either shiva.ActionCommand or shiva.ToggleCommand . 1. Call shiva.Main.addCommand ("comandName", command) to add the command ...
 
CIVMFormat 21 Jun 2006 - 06:36 - NEW Main.HengYuan
CIVM Format A CIVM image is consisted of a header file and bunch of files each representing a slice. AKAIK the header file resembles brucker image file format. Header ...
 
DOC 05 Apr 2007 - 18:20 - r1.6 Main.HengYuan
Shiva Developer Documentation $ Repository Structure : svn+ssh://cvs.loni.ucla.edu/cvs/map $ Plugin Documentation : For developers who wish to write plugins for SHIVA ...
 
FileFormats 12 Apr 2007 - 20:05 - r1.8 Main.HengYuan
File Formats The following file formats are currently supported by SHIVA. Image volume files Analyze(tm) ( .img, .hdr): http://www.mayo.edu/bir/PDF/ANALYZE75.pdf ...
 
GUI_RC 06 Jan 2006 - 23:25 - NEW Main.HengYuan
GUI RC is an XML file which describes what the SHIVA frame should look like. It is written in CookSwing. shiva.ShivaGUI class extends JFrame to have an setter for ...
 
HowToUseWiki 26 Aug 2005 - 20:03 - NEW Main.LindaCapetilloCunliffe
How To Use the SHIVA Wiki We encourage you to change the contents of a SHIVA Wiki web page and to add your own web page topics that is what a Wiki is all about ...
 
LabelIndexFileFormat 06 Jul 2006 - 23:19 - NEW Main.HengYuan
Label Index File Format Label index files ( .lbl, .txt) are ascii files used by Duff and SHIVA. Each line contains information of the label id, color (optional), ...
 
Plugin 06 Jan 2006 - 22:55 - r1.3 Main.HengYuan
Steps to create a plugin 1. Implement shiva.interfaces.ShivaPlugin . 1. Have public final static String PLUGIN DESCRIPTION "Some Description"; in the class. 1. Define ...
 
ReaderWriter 13 Sep 2005 - 22:28 - r1.2 Main.HengYuan
Steps adding a new file reader/writer 1. Implement shiva.io.ReaderWriter . 1. Create a shiva.io.DocFilter . The easiest way is using the following template. / file ...
 
START_RC 06 Jan 2006 - 23:24 - NEW Main.HengYuan
STARTUP RC points to an XML list of plugins to be loaded. It should be noted that how SHIVA looks is mainly specified using plugins. It is written in CookXml. shiva ...
 
ServerProtocols 11 Nov 2006 - 05:09 - r1.2 Main.HengYuan
Server Protocols ArcIMS ArcXML Programmer's Reference Guide for ArcIMS 9.1 Neuroterrain Atlas Server Network Protocols Web Services Description Language (Axis Client ...
 
ShivaConfiguration 06 Jan 2006 - 23:05 - NEW Main.HengYuan
SHIVA can be configured to have completely different look and feels. 1. Configure startup resource file location. 1. Configure ToggleComamnds 1. Configure menu 1. ...
 
StartConfigure 06 Jan 2006 - 23:15 - NEW Main.HengYuan
In shiva.Main class, there are two global class variables START RC and GUI RC which can be changed to point to different resource file locations before shiva.Main ...
 
SubversionRepositoryStructure 11 Apr 2007 - 23:06 - r1.2 Main.HengYuan
Subversion Repository Structure The Subversion repository location is svn+ssh://cvs.loni.ucla.edu/cvs/map . The following is the directory structure under trunk/ ...
 
TMFormat 07 Jul 2006 - 19:27 - r1.2 Main.CraigSchwartz
LONI Triangle Model Format This following description is obtained from LONI ShapeTools edu.ucla.loni.ccb.shapeio.tm.parser.TmAsciiShapeParser. The conventional suffix ...
 
UCFFormat 07 Jul 2006 - 22:53 - r1.2 Main.HengYuan
UCF Format Universal Contour Files (UCF) is a format devised at LONI. It is an ascii based file in the following format: Header 384 256 200.000000 200.000000 200 ...
 
WebChanges 16 Aug 2001 - 19:58 - NEW Main.PeterThoeny
INCLUDE{" TWIKIWEB .WebChanges"}
 
WebHome 13 Mar 2007 - 18:16 - r1.20 Main.HengYuan
SHIVA $ Manual : http://www.loni.ucla.edu/download/SHIVA/SHIVA MAP.pdf $ Download : Release version $ Developer Documentation : SHIVA documentation for developers ...
 
WebIndex 24 Nov 2001 - 11:41 - r1.2 Main.PeterThoeny
SEARCH{"\. " scope "topic" regex "on" nosearch "on"} See also the faster WebTopicList
 
WebLeftBar 16 Aug 2004 - 05:52 - NEW Main.ArthurClemens
INCLUDINGWEB Web INCLUDINGWEB Web Home Changes Index Search Webs WEBLIST{" $name" separator ""} INCLUDE{" MAINWEB . WIKINAME LeftBar" warn "Create personal sidebar ...
 
WebNotify 26 Jul 2005 - 19:56 - r1.6 Main.CraigSchwartz
This is a subscription service to be automatically notified by e-mail when topics change in this SHIVA web. This is a convenient service, so you do not have to come ...
 
WebPreferences 21 Jun 2006 - 06:43 - r1.22 Main.HengYuan
SHIVA Web Preferences The following settings are web preferences of the SHIVA web. These preferences overwrite the site-level preferences in TWIKIWEB . WIKIPREFSTOPIC ...
 
WebRss 16 Aug 2004 - 03:27 - r1.2 Main.PeterThoeny
TWiki's SHIVA web SCRIPTURL /view SCRIPTSUFFIX /SHIVA The SHIVA web of TWiki. TWiki is a Web-Based Collaboration Platform for the Corporate World. INCLUDE{" TWIKIWEB ...
 
WebSearch 08 Aug 2001 - 05:26 - NEW Main.PeterThoeny
INCLUDE{" TWIKIWEB .WebSearch"}
 
WebSearchAdvanced 18 Jan 2004 - 10:52 - NEW Main.PeterThoeny
INCLUDE{" TWIKIWEB .WebSearchAdvanced"}
 
WebStatistics 16 Nov 2009 - 12:33 - r1.1230 Main.guest
Statistics for SHIVA Web Month: Topic views: Topic saves: File uploads: Most popular topic views: Top contributors for topic save and uploads: Nov 2009 2139 0 0 399 ...
 
WebTopicEditTemplate 07 Feb 2005 - 23:44 - NEW Main.CraigSchwartz
WIKINAME DATE
 
WebTopicList 24 Nov 2001 - 11:40 - NEW Main.PeterThoeny
TOPICLIST{" $name "} See also the verbose WebIndex.
 

Number of topics: 28

See also the faster WebTopicList

WebLeftBar   16 Aug 2004 - 05:52 - NEW   Main.ArthurClemens
WebNotify   26 Jul 2005 - 19:56 - r1.6   Main.CraigSchwartz
This is a subscription service to be automatically notified by e-mail when topics change in this SHIVA web. This is a convenient service, so you do not have to come back and check all the time if something has changed. To subscribe, please add a bullet with your TWiki.WikiName in alphabetical order to this list:

  • Main.CraigSchwartz

Format: TWiki handles entries in bullet list (<space><space><space>*) format containing the TWiki.WikiName of a user; a WikiName with e-mail address; or a TWikiGroup. Examples:

  • Main.FredBloggs
  • Main.FredBloggs - secondary@home.com
  • Main.EngineeringGroup

The first entry is the default form, the notification gets sent to the e-mail address specified in the user's home page. The second entry lists an alternative e-mail address. The third entry specifies a group, the notification gets sent to each member of the group.

Related topics: TWiki.WebChangesAlert, Main.TWikiUsers, TWiki.TWikiRegistration

WebPreferences   21 Jun 2006 - 06:43 - r1.22   Main.HengYuan

SHIVA Web Preferences

The following settings are web preferences of the SHIVA web. These preferences overwrite the site-level preferences in TWiki.TWikiPreferences, and can be overwritten by user preferences (your personal topic, eg: Main.TWikiGuest in the Main web).

Preferences:

  • Set SKIN = dragon

  • TWiki.PatternSkin settings:
    • Set TWIKILAYOUTURL = /twiki/pub/TWiki/PatternSkin/layout.css
    • Set TWIKISTYLEURL = /twiki/pub/TWiki/PatternSkin/style.css
    • Set TWIKICOLORSURL = /twiki/pub/TWiki/PatternSkin/colors.css


CCB / Loni Customisations

Image, URL and alternate tooltip text of TWiki logo: (can be overwritten by web preferences)

    • Set WIKILOGOIMG =
    • Set WIKILOGOURL =
    • Set WIKILOGOALT = SHIVA home

    • Set DS_THEME= tabstyle

  • Quicklinks headings:
    • Set DS_QUICKLINKSHEADING = CCB Quicklinks

    • Set ATTACHFILESIZELIMIT = 100000

* TWiki site name: * Set WIKITOOLNAME = TWiki

  • Web specific background color: (Pick a lighter one of the TWiki.StandardColors)
    • Set WEBBGCOLOR = #D0D0D0

  • List this web in the TWiki.SiteMap:
    • If yes, set SITEMAPLIST to on, do not set NOSEARCHALL, and add the "what" and "use to..." description for the site map. Make sure to list only links that include the name of the web, e.g. SHIVA.Topic links.
    • Set SITEMAPLIST = on
    • Set SITEMAPWHAT = SHIVA project documentation
    • Set SITEMAPUSETO = document the SHIVA project

  • Exclude web from a web="all" search: (Set to on for hidden webs)
    • Set NOSEARCHALL =

  • Prevent automatic linking of WikiWords and acronyms (if set to on); link WikiWords (if empty); can be overwritten by web preferences:
    • Set NOAUTOLINK = on
    • Note: Use the [[...][...]] syntax to link topics in case you disabled WikiWord linking. The <noautolink> ... </noautolink> syntax can be used to prevents links within a block of text.

  • Default template for new topics and form(s) for this web:
    • WebTopicEditTemplate: Default template for new topics in this web. (Site-level is used if topic does not exist)
    • TWiki.WebTopicEditTemplate: Site-level default template
    • TWiki.TWikiForms: How to enable form(s)
    • Set WEBFORMS = NewProjectForm, NewProblemForm

  • Users or groups who are not / are allowed to view / change / rename topics in the SHIVA web: (See TWiki.TWikiAccessControl)
    • Set DENYWEBVIEW =
    • Set ALLOWWEBVIEW =
    • Set DENYWEBCHANGE =
    • Set ALLOWWEBCHANGE = Main.TWikiAdminGroup, Main.ShivaGroup
    • Set DENYWEBRENAME =
    • Set ALLOWWEBRENAME =

  • Users or groups allowed to change or rename this WebPreferences topic: (I.e. Main.TWikiAdminGroup)
    • Set ALLOWTOPICCHANGE = Main.TWikiAdminGroup, Main.ShivaGroup
    • Set ALLOWTOPICRENAME = Main.TWikiAdminGroup, Main.ShivaGroup

  • Web preferences that are not allowed to be overridden by user preferences:
    • Set FINALPREFERENCES = NOSEARCHALL, ATTACHFILESIZELIMIT, WIKIWEBMASTER, WEBCOPYRIGHT, WEBTOPICLIST, DENYWEBVIEW, ALLOWWEBVIEW, DENYWEBCHANGE, ALLOWWEBCHANGE, DENYWEBRENAME, ALLOWWEBRENAME

Notes:

  • A preference is defined as:
    6 spaces * Set NAME = value
    Example:
    • Set WEBBGCOLOR = #FFFFC0
  • Preferences are used as TWiki.TWikiVariables by enclosing the name in percent signs. Example:
    • When you write variable %WEBBGCOLOR% , it gets expanded to #D0D0D0 .
  • The sequential order of the preference settings is significant. Define preferences that use other preferences first, i.e. set WEBCOPYRIGHT before WIKIWEBMASTER since %WEBCOPYRIGHT% uses the %WIKIWEBMASTER% variable.
  • You can introduce new preferences variables and use them in your topics and templates. There is no need to change the TWiki engine (Perl scripts).

Related Topics:

  • TWiki.TWikiPreferences has site-level preferences.
  • Main.TWikiUsers has a list of user topics. User topics can have optional user preferences.
  • TWiki.TWikiVariables has a list of common %VARIABLES%.
  • TWiki.TWikiAccessControl explains how to restrict access by users or groups.
WebRss   16 Aug 2004 - 03:27 - r1.2   Main.PeterThoeny
TWiki's SHIVA web http://www.loni.ucla.edu/twiki/bin/view/SHIVA The SHIVA web of TWiki. TWiki is a Web-Based Collaboration Platform for the Corporate World. en-us Copyright 2009 Laboratory of Neuro Imaging, UCLA. TWiki Administrator [webmaster@loni.ucla.edu] TWiki Administrator [webmaster@loni.ucla.edu] TWiki TWiki.SHIVA SHIVA home.SHIVA http://www.loni.ucla.edu/twiki/bin/view/SHIVA WebStatistics http://www.loni.ucla.edu/twiki/bin/view/SHIVA/WebStatistics?t=2009-11-16T12:33Z Statistics for SHIVA Web Month: Topic views: Topic saves: File uploads: Most popular topic views: Top contributors for topic save and uploads: Nov 2009 2139 0 0 399 ... (last changed by guest) 2009-11-16T12:33Z guest 1.1230 updated major http://www.loni.ucla.edu/twiki/bin/rdiff/SHIVA/WebStatistics http://www.loni.ucla.edu/twiki/bin/rdiff/SHIVA/WebStatistics FileFormats http://www.loni.ucla.edu/twiki/bin/view/SHIVA/FileFormats?t=2007-04-12T20:05Z File Formats The following file formats are currently supported by SHIVA. Image volume files Analyze(tm) ( .img, .hdr): http://www.mayo.edu/bir/PDF/ANALYZE75.pdf ... (last changed by HengYuan) 2007-04-12T20:05Z heng 1.8 updated major http://www.loni.ucla.edu/twiki/bin/rdiff/SHIVA/FileFormats http://www.loni.ucla.edu/twiki/bin/rdiff/SHIVA/FileFormats SubversionRepositoryStructure http://www.loni.ucla.edu/twiki/bin/view/SHIVA/SubversionRepositoryStructure?t=2007-04-11T23:06Z Subversion Repository Structure The Subversion repository location is svn+ssh://cvs.loni.ucla.edu/cvs/map . The following is the directory structure under trunk/ ... (last changed by HengYuan) 2007-04-11T23:06Z heng 1.2 updated major http://www.loni.ucla.edu/twiki/bin/rdiff/SHIVA/SubversionRepositoryStructure http://www.loni.ucla.edu/twiki/bin/rdiff/SHIVA/SubversionRepositoryStructure DOC http://www.loni.ucla.edu/twiki/bin/view/SHIVA/DOC?t=2007-04-05T18:20Z Shiva Developer Documentation $ Repository Structure : svn+ssh://cvs.loni.ucla.edu/cvs/map $ Plugin Documentation : For developers who wish to write plugins for SHIVA ... (last changed by HengYuan) 2007-04-05T18:20Z heng 1.6 updated major http://www.loni.ucla.edu/twiki/bin/rdiff/SHIVA/DOC http://www.loni.ucla.edu/twiki/bin/rdiff/SHIVA/DOC WebHome http://www.loni.ucla.edu/twiki/bin/view/SHIVA/WebHome?t=2007-03-13T18:16Z SHIVA $ Manual : http://www.loni.ucla.edu/download/SHIVA/SHIVA MAP.pdf $ Download : Release version $ Developer Documentation : SHIVA documentation for developers ... (last changed by HengYuan) 2007-03-13T18:16Z heng 1.20 updated major http://www.loni.ucla.edu/twiki/bin/rdiff/SHIVA/WebHome http://www.loni.ucla.edu/twiki/bin/rdiff/SHIVA/WebHome ServerProtocols http://www.loni.ucla.edu/twiki/bin/view/SHIVA/ServerProtocols?t=2006-11-11T05:09Z Server Protocols ArcIMS ArcXML Programmer's Reference Guide for ArcIMS 9.1 Neuroterrain Atlas Server Network Protocols Web Services Description Language (Axis Client ... (last changed by HengYuan) 2006-11-11T05:09Z heng 1.2 updated major http://www.loni.ucla.edu/twiki/bin/rdiff/SHIVA/ServerProtocols http://www.loni.ucla.edu/twiki/bin/rdiff/SHIVA/ServerProtocols UCFFormat http://www.loni.ucla.edu/twiki/bin/view/SHIVA/UCFFormat?t=2006-07-07T22:53Z UCF Format Universal Contour Files (UCF) is a format devised at LONI. It is an ascii based file in the following format: Header 384 256 200.000000 200.000000 200 ... (last changed by HengYuan) 2006-07-07T22:53Z heng 1.2 updated major http://www.loni.ucla.edu/twiki/bin/rdiff/SHIVA/UCFFormat http://www.loni.ucla.edu/twiki/bin/rdiff/SHIVA/UCFFormat TMFormat http://www.loni.ucla.edu/twiki/bin/view/SHIVA/TMFormat?t=2006-07-07T19:27Z LONI Triangle Model Format This following description is obtained from LONI ShapeTools edu.ucla.loni.ccb.shapeio.tm.parser.TmAsciiShapeParser. The conventional suffix ... (last changed by CraigSchwartz) 2006-07-07T19:27Z craig 1.2 updated major http://www.loni.ucla.edu/twiki/bin/rdiff/SHIVA/TMFormat http://www.loni.ucla.edu/twiki/bin/rdiff/SHIVA/TMFormat LabelIndexFileFormat http://www.loni.ucla.edu/twiki/bin/view/SHIVA/LabelIndexFileFormat?t=2006-07-06T23:19Z Label Index File Format Label index files ( .lbl, .txt) are ascii files used by Duff and SHIVA. Each line contains information of the label id, color (optional), ... (last changed by HengYuan) 2006-07-06T23:19Z heng 1.1 updated major http://www.loni.ucla.edu/twiki/bin/rdiff/SHIVA/LabelIndexFileFormat http://www.loni.ucla.edu/twiki/bin/rdiff/SHIVA/LabelIndexFileFormat WebPreferences http://www.loni.ucla.edu/twiki/bin/view/SHIVA/WebPreferences?t=2006-06-21T06:43Z SHIVA Web Preferences The following settings are web preferences of the SHIVA web. These preferences overwrite the site-level preferences in TWIKIWEB . WIKIPREFSTOPIC ... (last changed by HengYuan) 2006-06-21T06:43Z heng 1.22 updated major http://www.loni.ucla.edu/twiki/bin/rdiff/SHIVA/WebPreferences http://www.loni.ucla.edu/twiki/bin/rdiff/SHIVA/WebPreferences CIVMFormat http://www.loni.ucla.edu/twiki/bin/view/SHIVA/CIVMFormat?t=2006-06-21T06:36Z CIVM Format A CIVM image is consisted of a header file and bunch of files each representing a slice. AKAIK the header file resembles brucker image file format. Header ... (last changed by HengYuan) 2006-06-21T06:36Z heng 1.1 updated major http://www.loni.ucla.edu/twiki/bin/rdiff/SHIVA/CIVMFormat http://www.loni.ucla.edu/twiki/bin/rdiff/SHIVA/CIVMFormat GUI_RC http://www.loni.ucla.edu/twiki/bin/view/SHIVA/GUI_RC?t=2006-01-06T23:25Z GUI RC is an XML file which describes what the SHIVA frame should look like. It is written in CookSwing. shiva.ShivaGUI class extends JFrame to have an setter for ... (last changed by HengYuan) 2006-01-06T23:25Z heng 1.1 updated major http://www.loni.ucla.edu/twiki/bin/rdiff/SHIVA/GUI_RC http://www.loni.ucla.edu/twiki/bin/rdiff/SHIVA/GUI_RC START_RC http://www.loni.ucla.edu/twiki/bin/view/SHIVA/START_RC?t=2006-01-06T23:24Z STARTUP RC points to an XML list of plugins to be loaded. It should be noted that how SHIVA looks is mainly specified using plugins. It is written in CookXml. shiva ... (last changed by HengYuan) 2006-01-06T23:24Z heng 1.1 updated major http://www.loni.ucla.edu/twiki/bin/rdiff/SHIVA/START_RC http://www.loni.ucla.edu/twiki/bin/rdiff/SHIVA/START_RC StartConfigure http://www.loni.ucla.edu/twiki/bin/view/SHIVA/StartConfigure?t=2006-01-06T23:15Z In shiva.Main class, there are two global class variables START RC and GUI RC which can be changed to point to different resource file locations before shiva.Main ... (last changed by HengYuan) 2006-01-06T23:15Z heng 1.1 updated major http://www.loni.ucla.edu/twiki/bin/rdiff/SHIVA/StartConfigure http://www.loni.ucla.edu/twiki/bin/rdiff/SHIVA/StartConfigure ShivaConfiguration http://www.loni.ucla.edu/twiki/bin/view/SHIVA/ShivaConfiguration?t=2006-01-06T23:05Z SHIVA can be configured to have completely different look and feels. 1. Configure startup resource file location. 1. Configure ToggleComamnds 1. Configure menu 1. ... (last changed by HengYuan) 2006-01-06T23:05Z heng 1.1 updated major http://www.loni.ucla.edu/twiki/bin/rdiff/SHIVA/ShivaConfiguration http://www.loni.ucla.edu/twiki/bin/rdiff/SHIVA/ShivaConfiguration Plugin http://www.loni.ucla.edu/twiki/bin/view/SHIVA/Plugin?t=2006-01-06T22:55Z Steps to create a plugin 1. Implement shiva.interfaces.ShivaPlugin . 1. Have public final static String PLUGIN DESCRIPTION "Some Description"; in the class. 1. Define ... (last changed by HengYuan) 2006-01-06T22:55Z heng 1.3 updated major http://www.loni.ucla.edu/twiki/bin/rdiff/SHIVA/Plugin http://www.loni.ucla.edu/twiki/bin/rdiff/SHIVA/Plugin
WebSearch   08 Aug 2001 - 05:26 - NEW   Main.PeterThoeny

Number of topics: 0

  • Jump to topic: If you already know the name of the topic, enter the name of the topic into the TWiki.GoBox at the top

  • TWiki.WebChanges: Find out what topics in SHIVA have changed recently

  • How to edit text:
    • Make changes to topics in TWiki.GoodStyle,
    • Learn the TWiki.TextFormattingRules, and
    • Have a look at the TWiki.TextFormattingFAQ
WebSearchAdvanced   18 Jan 2004 - 10:52 - NEW   Main.PeterThoeny
  • Advanced search:
    Topic text (body)     Search web(s)
    Topic name Sort by in reversed order

    Make search: Case sensitive TWiki.RegularExpression search (semicolon ';' for and)
    Don't show: search string summaries     total matches
    Do show: TWiki.BookView locked topic   topics (result count)

  • Jump to topic: If you already know the name of the topic, enter the name of the topic into the TWiki.GoBox at the top

  • TWiki.WebChanges: Find out what topics in SHIVA have changed recently

  • How to edit text:
    • Make changes to topics in TWiki.GoodStyle,
    • Learn the TWiki.TextFormattingRules, and
    • Have a look at the TWiki.TextFormattingFAQ

-- TWiki:Main.PeterThoeny - 18 Jan 2004

WebStatistics   16 Nov 2009 - 12:33 - r1.1230   Main.guest

Statistics for SHIVA Web

Month: Topic
views:
Topic
saves:
File
uploads:
Most popular
topic views:
Top contributors for
topic save and uploads:
Nov 2009 2139 0 0 399 WebRss
350 WebHome
332 WebStatistics
101 DOC
101 WebChanges
 95 WebNotify
 90 WebPreferences
 85 WebSearch
 78 WebIndex
 75 HowToUseWiki
 74 WebTopicList
 
Oct 2009 5012 0 0 1439 WebRss
779 WebStatistics
664 WebHome
223 WebNotify
214 DOC
186 WebPreferences
174 WebChanges
172 WebSearch
149 HowToUseWiki
136 WebIndex
135 WebTopicList
 
Sep 2009 5335 0 0 1256 WebRss
928 WebStatistics
757 WebHome
280 WebPreferences
228 WebNotify
204 DOC
193 WebChanges
164 WebSearch
152 HowToUseWiki
148 WebIndex
137 WebTopicList
 
Aug 2009 6822 0 0 2098 WebStatistics
1046 WebRss
840 WebHome
305 WebPreferences
244 WebNotify
233 DOC
178 WebChanges
175 HowToUseWiki
173 WebSearch
169 WebIndex
158 WebTopicList
 
Jul 2009 7481 0 0 1974 WebRss
1787 WebStatistics
709 WebHome
267 WebPreferences
246 WebNotify
207 DOC
195 HowToUseWiki
180 WebChanges
166 WebSearch
158 SubversionRepositoryStructure
157 WebTopicList
 
Jun 2009 5762 0 0 1593 WebRss
1358 WebStatistics
465 WebHome
186 WebPreferences
179 WebNotify
176 DOC
134 HowToUseWiki
128 FileFormats
119 WebSearch
111 TMFormat
110 WebTopicList
 
May 2009 45505 0 0 40852 WebRss
2101 WebStatistics
485 WebHome
175 WebNotify
155 WebPreferences
147 DOC
120 HowToUseWiki
117 WebSearch
116 WebChanges
114 FileFormats
107 SubversionRepositoryStructure
 
Apr 2009 37707 0 0 34015 WebRss
1932 WebStatistics
227 WebHome
116 DOC
110 WebPreferences
105 SubversionRepositoryStructure
 97 WebNotify
 93 FileFormats
 75 Plugin
 69 HowToUseWiki
 65 TMFormat
 
Mar 2009 8322 0 0 2936 WebStatistics
1766 WebRss
378 WebHome
248 WebNotify
216 WebPreferences
206 SubversionRepositoryStructure
188 FileFormats
179 DOC
162 Plugin
140 WebIndex
136 UCFFormat
 
Feb 2009 4369 0 0 1147 WebStatistics
382 WebHome
219 WebNotify
190 DOC
173 SubversionRepositoryStructure
155 Plugin
144 WebRss
136 TMFormat
136 UCFFormat
132 FileFormats
126 ServerProtocols
 
Jan 2009 6189 0 0 1630 WebStatistics
351 WebHome
286 WebNotify
259 DOC
231 WebRss
226 Plugin
218 SubversionRepositoryStructure
204 UCFFormat
195 TMFormat
190 WebPreferences
178 ReaderWriter
 
Dec 2008 6984 0 0 2052 WebStatistics
338 WebHome
291 WebRss
250 SubversionRepositoryStructure
248 WebNotify
227 DOC
215 FileFormats
213 Plugin
202 UCFFormat
201 TMFormat
197 WebPreferences
 
Nov 2008 6486 0 0 1689 WebStatistics
287 WebHome
268 WebNotify
248 SubversionRepositoryStructure
220 DOC
211 WebPreferences
207 UCFFormat
204 FileFormats
203 Plugin
196 TMFormat
193 ReaderWriter
 
Oct 2008 6551 0 0 1359 WebStatistics
359 WebHome
289 WebNotify
276 WebPreferences
249 SubversionRepositoryStructure
238 DOC
235 Plugin
220 FileFormats
210 TMFormat
210 UCFFormat
195 ServerProtocols
 
Sep 2008 4411 0 0 1719 WebStatistics
263 WebHome
185 WebPreferences
183 WebNotify
132 FileFormats
125 SubversionRepositoryStructure
123 DOC
102 Plugin
 97 TMFormat
 94 WebSearch
 90 ReaderWriter
 
Aug 2008 4004 0 0 1760 WebStatistics
270 WebHome
156 WebNotify
146 WebPreferences
127 SubversionRepositoryStructure
114 FileFormats
106 DOC
 97 Plugin
 81 ReaderWriter
 79 TMFormat
 78 ServerProtocols
 
Jul 2008 4712 0 0 2582 WebStatistics
281 WebHome
163 WebNotify
148 WebPreferences
138 DOC
103 WebRss
 88 Plugin
 87 FileFormats
 80 SubversionRepositoryStructure
 72 ServerProtocols
 69 WebIndex
 
Jun 2008 5426 0 0 3652 WebStatistics
281 WebHome
138 WebPreferences
125 WebNotify
103 WebRss
 76 DOC
 71 WebChanges
 69 FileFormats
 68 SubversionRepositoryStructure
 57 WebSearch
 55 Plugin
 
May 2008 5436 0 0 3725 WebStatistics
211 WebHome
145 WebNotify
118 WebPreferences
103 DOC
 86 SubversionRepositoryStructure
 75 FileFormats
 69 Plugin
 59 WebRss
 58 WebIndex
 55 UCFFormat
 
Apr 2008 5201 0 0 3721 WebStatistics
228 WebHome
126 WebPreferences
 95 WebNotify
 74 DOC
 69 SubversionRepositoryStructure
 65 FileFormats
 57 WebIndex
 55 WebRss
 52 WebSearch
 50 WebChanges
 
Mar 2008 2349 0 0 1064 WebStatistics
162 WebHome
126 WebPreferences
106 WebNotify
 76 SubversionRepositoryStructure
 68 DOC
 68 FileFormats
 57 WebIndex
 47 ServerProtocols
 43 Plugin
 43 WebSearch
 
Feb 2008 2229 0 0 1004 WebStatistics
178 WebHome
103 WebPreferences
 81 WebNotify
 70 DOC
 62 FileFormats
 62 SubversionRepositoryStructure
 51 WebIndex
 47 WebSearch
 45 WebChanges
 40 WebRss
 
Jan 2008 3423 0 0 1877 WebStatistics
206 WebHome
163 WebPreferences
113 WebNotify
 96 SubversionRepositoryStructure
 91 FileFormats
 80 DOC
 64 WebSearch
 53 WebChanges
 49 HowToUseWiki
 46 WebIndex
 
Dec 2007 2487 0 0 931 WebStatistics
229 WebHome
161 WebPreferences
100 WebNotify
 97 DOC
 93 FileFormats
 61 SubversionRepositoryStructure
 56 HowToUseWiki
 54 Plugin
 52 WebIndex
 48 ReaderWriter
 
Nov 2007 1213 0 0 570 WebStatistics
104 WebHome
 65 WebPreferences
 50 WebNotify
 37 SubversionRepositoryStructure
 33 DOC
 31 WebChanges
 27 FileFormats
 24 WebSearch
 23 UCFFormat
 21 TMFormat
 
Oct 2007 1352 0 0 273 WebStatistics
149 WebHome
102 WebPreferences
 65 WebNotify
 60 DOC
 48 FileFormats
 42 UCFFormat
 41 TMFormat
 38 Plugin
 36 WebChanges
 35 WebRss
 
Sep 2007 2172 0 0 996 WebStatistics
207 WebHome
114 WebPreferences
 73 WebNotify
 64 DOC
 55 FileFormats
 52 SubversionRepositoryStructure
 49 Plugin
 49 WebRss
 43 UCFFormat
 39 WebSearch
 
Aug 2007 4158 0 0 1977 WebStatistics
317 WebHome
260 WebPreferences
139 DOC
124 WebNotify
113 FileFormats
 97 Plugin
 81 UCFFormat
 75 ReaderWriter
 70 WebIndex
 65 WebRss
 
Jul 2007 3114 0 0 1010 WebStatistics
282 WebHome
194 WebPreferences
132 DOC
132 WebNotify
105 FileFormats
 86 Plugin
 76 WebSearch
 71 SubversionRepositoryStructure
 69 UCFFormat
 67 WebIndex
 
Jun 2007 2994 0 0 709 WebStatistics
332 WebHome
244 WebPreferences
142 DOC
112 WebNotify
 90 Plugin
 88 UCFFormat
 88 FileFormats
 84 WebIndex
 79 WebChanges
 79 ReaderWriter
 
May 2007 2018 0 0 713 WebStatistics
148 WebHome
111 WebPreferences
 76 DOC
 66 WebNotify
 62 FileFormats
 59 Plugin
 51 WebRss
 49 WebIndex
 48 UCFFormat
 45 StartConfigure
 
Apr 2007 4833 6 0 3369 WebStatistics
245 WebHome
130 WebPreferences
100 SubversionRepositoryStructure
 89 FileFormats
 75 DOC
 68 WebNotify
 63 WebChanges
 52 WebRss
 50 Plugin
 43 HowToUseWiki
  6 Main.HengYuan
Mar 2007 4416 4 0 2106 WebStatistics
346 WebHome
247 WebPreferences
176 DOC
169 FileFormats
115 WebNotify
 95 Plugin
 79 WebIndex
 75 WebChanges
 75 ReaderWriter
 71 TMFormat
  4 Main.HengYuan
Feb 2007 3385 0 0 2410 WebStatistics
169 WebHome
154 WebPreferences
 77 WebNotify
 65 FileFormats
 54 DOC
 53 WebChanges
 32 Plugin
 28 WebRss
 25 WebTopicList
 25 WebIndex
 
Jan 2007 5461 0 0 4038 WebStatistics
213 WebHome
168 WebPreferences
105 WebNotify
 97 DOC
 84 FileFormats
 83 WebChanges
 55 Plugin
 51 WebRss
 50 ServerProtocols
 42 WebIndex
 
Dec 2006 3431 2 0 1754 WebStatistics
265 WebHome
188 WebPreferences
135 FileFormats
125 WebNotify
 97 DOC
 80 Plugin
 70 WebRss
 56 ServerProtocols
 54 TMFormat
 51 UCFFormat
  2 Main.HengYuan
Nov 2006 3699 8 0 1728 WebStatistics
288 WebHome
269 WebPreferences
191 WebRss
136 DOC
133 WebNotify
105 FileFormats
 95 ServerProtocols
 68 Plugin
 62 UCFFormat
 52 TMFormat
  8 Main.HengYuan
Oct 2006 2109 0 0 1109 WebStatistics
173 WebHome
 97 WebPreferences
 86 WebNotify
 76 WebRss
 58 DOC
 57 Plugin
 47 FileFormats
 34 StartConfigure
 31 WebIndex
 28 HowToUseWiki
 
Sep 2006 2934 0 0 2046 WebStatistics
137 WebHome
128 WebPreferences
112 WebNotify
 67 WebRss
 45 Plugin
 42 WebChanges
 36 DOC
 30 FileFormats
 27 WebIndex
 24 TMFormat
 
Aug 2006 1897 0 0 576 WebStatistics
394 WebNotify
187 WebHome
128 WebPreferences
 63 WebRss
 57 FileFormats
 56 DOC
 40 WebChanges
 34 WebIndex
 30 ReaderWriter
 28 HowToUseWiki
 
Jul 2006 2677 9 0 798 WebStatistics
396 WebHome
274 WebNotify
134 FileFormats
133 WebPreferences
 92 DOC
 72 WebRss
 66 WebIndex
 64 Plugin
 54 UCFFormat
 54 WebChanges
  8 Main.HengYuan
  1 Main.CraigSchwartz
Jun 2006 2047 27 0 544 WebStatistics
258 WebHome
164 WebPreferences
121 WebNotify
112 FileFormats
 97 DOC
 69 Plugin
 65 WebRss
 58 WebChanges
 53 ReaderWriter
 52 WebIndex
 27 Main.HengYuan
May 2006 1402 0 0 602 WebStatistics
126 WebPreferences
100 WebHome
 56 WebNotify
 51 Plugin
 50 WebRss
 43 DOC
 41 WebIndex
 40 ReaderWriter
 32 WebTopicEditTemplate
 29 WebSearchAdvanced
 
Apr 2006 1128 0 0 350 WebStatistics
 98 WebHome
 82 WebPreferences
 54 WebNotify
 52 WebRss
 50 Plugin
 44 DOC
 40 WebIndex
 39 WebChanges
 36 ReaderWriter
 34 WebTopicEditTemplate
 
Mar 2006 1332 0 0 515 WebStatistics
147 WebHome
 70 WebNotify
 60 WebPreferences
 58 WebChanges
 57 WebRss
 49 Plugin
 46 ReaderWriter
 42 DOC
 37 WebIndex
 36 HowToUseWiki
 
Feb 2006 2173 0 0 1027 WebStatistics
237 WebHome
146 WebPreferences
113 WebNotify
 78 DOC
 58 Plugin
 50 WebIndex
 45 WebRss
 45 WebChanges
 43 WebSearch
 39 WebTopicList
 
Jan 2006 3270 13 0 2086 WebStatistics
450 WebHome
117 WebPreferences
 80 WebNotify
 67 DOC
 50 Plugin
 46 WebRss
 39 StartConfigure
 35 ShivaConfiguration
 34 WebIndex
 31 ReaderWriter
 13 Main.HengYuan
Dec 2005 2369 0 0 1380 WebStatistics
236 WebHome
177 WebPreferences
106 WebNotify
 47 WebRss
 46 WebSearch
 46 WebChanges
 44 DOC
 42 Plugin
 37 ReaderWriter
 37 WebIndex
 
Nov 2005 1336 0 0 572 WebStatistics
199 WebHome
112 WebPreferences
 93 WebNotify
 53 WebSearch
 38 WebChanges
 35 WebRss
 33 DOC
 26 Plugin
 25 WebIndex
 24 ReaderWriter
 
Oct 2005 1018 0 0 249 WebStatistics
180 WebHome
146 WebPreferences
 84 WebNotify
 51 WebSearch
 43 WebChanges
 38 WebIndex
 32 DOC
 28 Plugin
 26 ReaderWriter
 25 WebRss
 
Sep 2005 721 22 0 333 WebHome
 47 WebStatistics
 41 Plugin
 40 WebSearch
 40 WebNotify
 40 WebPreferences
 33 DOC
 24 ReaderWriter
 23 WebRss
 22 WebChanges
 13 AddCommand
 22 Main.HengYuan
Aug 2005 218 4 0 112 WebHome
 29 WebPreferences
 18 WebRss
 10 HowToUseWiki
  8 WebStatistics
  6 WebIndex
  6 WebNotify
  5 WebSearch
  5 WebTopicList
  4 WebSearchAdvanced
  4 WebLeftBar
  3 Main.LindaCapetilloCunliffe
  1 Main.HengYuan
Jul 2005 3536 51 5 458 CcbBiologicalProjects?
208 WebHome
181 ShapeToolLibraryProgram?
150 WebStatistics
113 CcbScientificProjects?
 99 CcbResources?
 76 ShapeToolLibraryProject?
 58 WebPreferences
 55 CcbMeetings?
 53 WebSearch
 46 AneurysmProject?
 53 Main.CraigSchwartz
  3 Main.ccb
Jun 2005 3155 127 6 503 CcbBiologicalProjects?
210 WebHome
190 ShapeToolLibraryProgram?
138 WebStatistics
 73 WebPreferences
 70 CcbResources?
 64 CcbScientificProjects?
 58 CcbMeetings?
 54 WebNotify
 49 FAQ?
 49 Meeting08June2005?
111 Main.CraigSchwartz
 21 Main.ccb
  1 Main.DavidShattuck
May 2005 2549 106 13 230 CcbBiologicalProjects?
227 WebHome
170 ShapeToolLibraryProgram?
147 WebStatistics
116 CcbResources?
 98 CcbScientificProjects?
 68 CcbMeetings?
 62 AneurysmProject?
 51 WebPreferences
 50 WebNotify
 48 Meeting04May2005?
117 Main.CraigSchwartz
  2 Main.MichaelJPan
Apr 2005 6941 106 11 1493 CcbBiologicalProjects?
762 WebStatistics
470 CcbScientificProjects?
360 CcbResources?
328 WebHome
299 CcbMeetings?
248 AneurysmProject?
195 SoftwareDemonstrations24Feb2005?
180 Meeting23March2005?
178 ShapeToolLibraryProgram?
161 WebPreferences
 60 Main.ccb
 53 Main.CraigSchwartz
  3 Main.LindaCapetilloCunliffe
  1 Main.dvalentino
Mar 2005 3150 80 3 363 WebHome
263 CcbScientificProjects?
237 WebStatistics
236 CcbResources?
187 CcbMeetings?
155 CcbBiologicalProjects?
148 AneurysmProject?
116 WebPreferences
110 SoftwareDemonstrations24Feb2005?
 91 NewProjectForm?
 81 JobApplicants?
 31 Main.CraigSchwartz
 29 Main.ccb
 22 Main.MichaelJPan
  1 Main.LindaCapetilloCunliffe
Feb 2005 345 81 1 128 WebHome
 49 WebPreferences
 28 CcbScientificProjects?
 18 NewProjectForm?
 15 CcbResources?
 14 CcbAnnouncements?
 13 WebIndex
 13 FAQ?
 11 SolutionsPipeline?
  8 TestTableTemplatePage?
  8 WebChanges
 59 Main.craig
 21 Main.CraigSchwartz
  2 Main.MichaelWhang

Notes:

  • Do not edit this topic, it is updated automatically. (You can also force an update)
  • TWiki.TWikiDocumentation tells you how to enable the automatic updates of the statistics.
  • Suggestion: You could archive this topic once a year and delete the previous year's statistics from the table.
WebTopicEditTemplate   07 Feb 2005 - 23:44 - NEW   Main.CraigSchwartz
guest - 25 Nov 2009
WebTopicList   24 Nov 2001 - 11:40 - NEW   Main.PeterThoeny

Number of topics: 28